body #whytoChoose {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 150px;
}

#whytoChoose #text {
    width: 60%;
}

#whytoChoose #heading {
    flex-direction: column;
    text-align: center;
}

#whytoChoose #heading #smallH {
    font-size: 1rem;
    color: var(--txt-color2);
}

#whytoChoose #heading #bigH {
    margin-top: -0.4rem;
    font-size: 2.5rem;
    color: var(--txt-color1);
}

body #whytoChoose #text {
    display: flex;
    flex-direction: column;
}

#whytoChoose #text #para {
    font-size: 1rem;
    margin-top: 20px;
    color: var(--txt-color3);
}

body #whytoChoose #text #points {
    font-size: 1rem;
    color: var(--txt-color3);
    margin-left: 50px;
    margin-top: 10px;
}

body #whytoChoose #text #points ul li {
    list-style: square;
}

#whytoChoose #image {
    width: 40%;
    margin-left: 50px;
}

#whytoChoose #image img {
    width: 400px;
    height: 400px;
    border-radius: 100%;
    box-shadow: -1px 1px 5px rgb(223, 223, 223);
}

@media (max-width: 1100px) {
    #whytoChoose #heading #smallH {
        font-size: 0.8rem;
    }
    #whytoChoose #heading #bigH {
        font-size: 2rem;
    }
    #whytoChoose #text #para {
        font-size: 0.8rem;
    }
    body #whytoChoose #text #points {
        font-size: 0.8rem;
    }
    #whytoChoose #image img {
        width: 300px;
        height: 300px;
        border-radius: 100%;
        box-shadow: -1px 1px 5px rgb(223, 223, 223);
    }
}

@media (max-width: 768px) {
    body #whytoChoose {
        height: fit-content !important;
        margin: 40px 90px !important;
    }
    #whytoChoose #heading #smallH {
        font-size: 0.7rem;
    }
    #whytoChoose #heading #bigH {
        font-size: 1.7rem;
    }
    #whytoChoose #text #para {
        font-size: 0.7rem;
    }
    body #whytoChoose #text #points {
        font-size: 0.7rem;
    }
    #whytoChoose #image img {
        width: 200px;
        height: 200px;
        border-radius: 100%;
        box-shadow: -1px 1px 5px rgb(223, 223, 223);
    }
}

@media (max-width: 700px) {
    body #whytoChoose {
        margin: 40px 15px !important;
        flex-direction: column;
    }
    #whytoChoose #heading #smallH {
        font-size: 0.7rem;
    }
    #whytoChoose #heading #bigH {
        font-size: 1.7rem;
    }
    #whytoChoose #text {
        width: 100%;
    }
    #whytoChoose #text #para {
        font-size: 0.7rem;
    }
    body #whytoChoose #text #points {
        font-size: 0.7rem;
    }
    #whytoChoose #image img {
        width: 300px;
        height: 300px;
        border-radius: 100%;
        box-shadow: -1px 1px 5px rgb(223, 223, 223);
    }
    #whytoChoose #image {
        width: 100%;
        margin-left: 0px !important;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}